home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / lib / obsolete / nr_elmhes.pro < prev    next >
Text File  |  1997-07-08  |  779b  |  29 lines

  1. ; $Id: nr_elmhes.pro,v 1.2 1997/01/15 04:02:19 ali Exp $
  2. ;
  3. ; Copyright (c) 1994-1997, Research Systems, Inc.  All rights reserved.
  4. ;    Unauthorized reproduction prohibited.
  5. ;+
  6. ; NAME:
  7. ;    NR_ELMHES
  8. ;
  9. ; PURPOSE:
  10. ;
  11. ;    NR_ELMHES now executes ELMHES, the updated version of this routine. 
  12. ;       ELMHES has been modified to accept row vectors as the default input 
  13. ;    and column vectors with use of the COLUMN keyword.  This routine
  14. ;    preserves the input of column vectors.
  15. ;
  16. ; MODIFICATION HISTORY:
  17. ;     Written by:     BMH Nov, 1994    
  18. ;
  19. ;-
  20. FUNCTION NR_ELMHES, a, DOUBLE=double, NO_BALANCE=no_balance
  21.  
  22.   IF NOT KEYWORD_SET(double) THEN double = 0 
  23.   IF NOT KEYWORD_SET(no_balance) THEN no_balance = 0 
  24.  
  25.   result = ELMHES(a, DOUBLE=double, NO_BALANCE=no_balance, /COLUMN)
  26.   RETURN, result
  27.  
  28. END
  29.